Conversation
| * <p> | ||
| * 用于:参数解析,Header,Param 处理 | ||
| * | ||
| * @see LinkedCaseInsensitiveMap |
There was a problem hiding this comment.
MissingSummary: A summary fragment is required; consider using the value of the @see block as a summary fragment instead.
| * @see LinkedCaseInsensitiveMap | |
| *See {@link LinkedCaseInsensitiveMap}. |
(at-me in a reply with help or ignore)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
| package io.github.fzdwx.lambada.lang; | ||
|
|
||
| /** | ||
| * @author <a href="mailto:likelovec@gmail.com">fzdwx</a> |
There was a problem hiding this comment.
MissingSummary: A summary line is required on public/protected Javadocs.
(at-me in a reply with help or ignore)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
| @Nullable | ||
| static RandomAccessFile newRaf(String filePath) { | ||
| try { | ||
| return new RandomAccessFile(filePath, "r"); |
There was a problem hiding this comment.
PATH_TRAVERSAL_IN: This API (java/io/RandomAccessFile.(Ljava/lang/String;Ljava/lang/String;)V) reads a file whose location might be specified by user input
(at-me in a reply with help or ignore)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
| } | ||
|
|
||
| static File newFile(String filePath) { | ||
| return new File(filePath); |
There was a problem hiding this comment.
PATH_TRAVERSAL_IN: This API (java/io/File.(Ljava/lang/String;)V) reads a file whose location might be specified by user input
(at-me in a reply with help or ignore)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
No description provided.